furny.swing.admin.importer
Class ImporterPanel.FileEntry

java.lang.Object
  extended by furny.swing.admin.importer.ImporterPanel.FileEntry
Enclosing class:
ImporterPanel

private static class ImporterPanel.FileEntry
extends java.lang.Object

An entry that encapsulates information about a file.

Since:
12.08.2012
Author:
Stephan Dreyer

Field Summary
private  java.io.File file
           
private  boolean selected
           
 
Constructor Summary
ImporterPanel.FileEntry(java.io.File file)
          Instantiates a new file entry.
 
Method Summary
 java.io.File getFile()
          Gets the file.
 boolean isSelected()
          Checks if the entry is selected.
 void setSelected(boolean selected)
          Sets the entry selected.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

file

private final java.io.File file

selected

private boolean selected
Constructor Detail

ImporterPanel.FileEntry

public ImporterPanel.FileEntry(java.io.File file)
Instantiates a new file entry.

Parameters:
file - the file
Since:
12.08.2012
Method Detail

setSelected

public void setSelected(boolean selected)
Sets the entry selected.

Parameters:
selected - the new selected
Since:
12.08.2012

isSelected

public boolean isSelected()
Checks if the entry is selected.

Returns:
true, if is selected
Since:
12.08.2012

getFile

public java.io.File getFile()
Gets the file.

Returns:
the file
Since:
12.08.2012